home *** CD-ROM | disk | FTP | other *** search
- package regex;
-
- class NList {
- private Chars chars;
- // $FF: renamed from: to int
- private int field_0;
- private NList next;
-
- // $FF: renamed from: to () int
- public int method_0() {
- return this.field_0;
- }
-
- NList(Chars var1, int var2, NList var3) {
- this.chars = var1;
- this.field_0 = var2;
- this.next = var3;
- }
-
- public NList next() {
- return this.next;
- }
-
- public Chars chars() {
- return this.chars;
- }
- }
-